home *** CD-ROM | disk | FTP | other *** search
- package org.flintparticles.counters
- {
- import org.flintparticles.emitters.Emitter;
-
- public class ZeroCounter implements Counter
- {
-
-
- public function ZeroCounter()
- {
- super();
- }
-
- public function updateEmitter(param1:Emitter, param2:Number) : uint
- {
- return 0;
- }
-
- public function startEmitter(param1:Emitter) : uint
- {
- return 0;
- }
- }
- }
-